-
Notifications
You must be signed in to change notification settings - Fork 94
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update plugins to inherit from WorkerPlugin
#1230
Conversation
cc @rjzamora @jacobtomlinson as this came up in a meeting earlier today |
Thanks @jrbourbeau ! |
Btw, I'm not super familiar with the codebase here. So just let me know if there are other plugins around |
/ok to test |
/ok to test |
/ok to test |
/ok to test |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, thanks @jrbourbeau for helping us out with getting Dask-CUDA up-to-speed with latest Distributed changes!
/merge |
Upstream in
distributed
we're considering enforcing plugins to inherit from their respective base class (e.g.WorkerPlugin
,SchedulerPlugin
,NannyPlugin
) dask/distributed#8149. This PR updates plugins here to inherhit fromWorkerPlugin
. This makes things a little more future-proof and is probably a good thing to do anyways.